Trac is being migrated to new services! Issues can be found in our new
YouTrack instance and WIKI pages can be found on our
website.
- Timestamp:
-
Jul 5, 2009, 3:53:03 PM (15 years ago)
- Author:
-
loser
- Comment:
-
improved portable upgrade script
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v167
|
v168
|
|
246 | 246 | |
247 | 247 | === Can I make Pidgin transparent/translucent? === |
| 248 | |
| 249 | |
| 250 | |
| 251 | |
248 | 252 | '''Windows:'''[[BR]] |
249 | 253 | You can make Pidgin translucent in most versions of Windows using the "Transparency" plugin that ships with Pidgin for Windows. A user has also recommended the freeware Windows utility, [http://www.abstractpath.com/powermenu/ PowerMenu] which can to make any window translucent. |
… |
… |
|
426 | 430 | The following batch script takes care of removing unneeded Pidgin files as described above. |
427 | 431 | |
428 | | '''Do not use this unless you understand what it is doing!''' |
429 | | {{{ |
430 | | REM download: http://sourceforge.net/project/downloading.php?group_id=235&filename=pidgin-<version>-win32-bin.zip |
431 | | |
432 | | cd pidgin-<version>-win32-bin |
433 | | |
434 | | REM remove unused modules |
435 | | rmdir /S /Q perlmod |
436 | | del plugins\perl.dll plugins\tcl.dll |
437 | | |
438 | | REM keep only relevant locale (here: DE) |
439 | | move locale\de %TEMP% |
440 | | rmdir /S /Q locale |
441 | | mkdir locale |
442 | | move %TEMP%\de locale |
443 | | |
444 | | REM disable spell-checking |
445 | | del libgtkspell.dll |
446 | | |
447 | | REM activate portable mode |
448 | | move pidgin.exe pidgin-portable.exe |
| 432 | '''Do not use this unless you understand what it is doing! ''' |
| 433 | {{{ |
| 434 | : preparation: download http://sourceforge.net/project/downloading.php?group_id=235&filename=pidgin-<version>-win32-bin.zip |
| 435 | |
| 436 | set TMPDIR=tmp_%RANDOM%_%RANDOM% |
| 437 | cd pidgin-*-win32bin && ^ |
| 438 | echo remove unused modules && ^ |
| 439 | rmdir /S /Q perlmod && ^ |
| 440 | del plugins\perl.dll plugins\tcl.dll && ^ |
| 441 | echo keep only relevant locale (here: DE) && ^ |
| 442 | set TMPDIR=tmp_%RANDOM%_%RANDOM% && ^ |
| 443 | mkdir %TMPDIR% && ^ |
| 444 | move locale\de %TMPDIR% && ^ |
| 445 | rmdir /S /Q locale && ^ |
| 446 | mkdir locale && ^ |
| 447 | move %TMPDIR%\de locale && ^ |
| 448 | echo disable spell-checking && ^ |
| 449 | del libgtkspell.dll && ^ |
| 450 | echo activate portable mode && ^ |
| 451 | move pidgin.exe pidgin-portable.exe && ^ |
| 452 | echo SUCCESS || ^ |
| 453 | echo ERROR |
| 454 | |
| 455 | PAUSE |
449 | 456 | }}} |
450 | 457 | |
All information, including names and email addresses, entered onto this website or sent to mailing lists affiliated with this website will be public. Do not post confidential information, especially passwords!